// // are comments //any line that begins with #, is an instruction to the compiler #include using namespace std; void main() { // \n - escape sequence for a end of line // \a - alarm cout << "Roll\b\t Tide\\\\\n\a"; }